1deff335ea4b541bced026f5742e81d68d3610af,src/main/java/modtweaker/mods/tconstruct/commands/TConstructLogger.java,TConstructLogger,execute,#String[]#IPlayer#,29

Before Change



                for (CastingRecipe recipe : TConstructHelper.tableCasting) {
                    MineTweakerAPI.logCommand(String.format("mods.tconstruct.Casting.addTableRecipe(%s, %s, %s, %s, %d);",
                            LogHelper.getStackDescription(recipe.getResult()),
                            LogHelper.getStackDescription(recipe.getFluid()),
                            LogHelper.getStackDescription(recipe.cast),
                            recipe.consumesCast(),

After Change


            if (args.isEmpty() || args.contains("Casting")) {
                for (ICastingRecipe recipe : TConstructHelper.basinCasting) {
                    MineTweakerAPI.logCommand(String.format("mods.tconstruct.Casting.addBasinRecipe(%s, %s, %s, %s, %d);",
                            LogHelper.getStackDescription(((CastingRecipe) recipe).getResult()),
                            LogHelper.getStackDescription(((CastingRecipe) recipe).getFluid()),
                            LogHelper.getStackDescription(((CastingRecipe) recipe).cast),
                            recipe.consumesCast(),